home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue49
/
Clinic
/
TermAppU.dfm
/
TermAppU.txt
Wrap
Text File
|
1999-06-02
|
2KB
|
72 lines
object MainForm: TMainForm
Left = 202
Top = 109
BorderStyle = bsDialog
Caption = 'Process Launcher And Terminator'
ClientHeight = 54
ClientWidth = 432
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = True
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object btnLaunch1: TSpeedButton
Left = 8
Top = 16
Width = 89
Height = 22
Hint = 'Launch program with ShellExecuteEx'
Caption = '&Open (1)'
ParentShowHint = False
ShowHint = True
OnClick = btnLaunch1Click
end
object btnLaunch2: TSpeedButton
Left = 112
Top = 16
Width = 89
Height = 22
Hint = 'Launch program with CreateProcess'
Caption = 'O&pen (2)'
ParentShowHint = False
ShowHint = True
OnClick = btnLaunch2Click
end
object btnTerminate1: TSpeedButton
Left = 216
Top = 16
Width = 89
Height = 22
Hint = 'Terminate process with TerminateProcess'
Caption = 'Terminate (&1)'
Enabled = False
ParentShowHint = False
ShowHint = True
OnClick = btnTerminate1Click
end
object btnTerminate2: TSpeedButton
Left = 320
Top = 16
Width = 89
Height = 22
Hint = 'Terminate process in "clean" fashion'
Caption = 'Terminate(&2)'
Enabled = False
ParentShowHint = False
ShowHint = True
OnClick = btnTerminate2Click
end
object dlgOpen: TOpenDialog
FileName = 'calc.exe'
Filter = 'Programs (*.exe)|*.exe|All files (*.*)|*.*'
Title = 'Launch Program'
Left = 208
Top = 8
end
end